home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Object.dxr / 00093_Behavior Killer behavior.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  1.4 KB  |  59 lines

  1. property startsprite, endSprite, scriptname, whichevent
  2.  
  3. on getPropertyDescriptionList
  4.   set p_list to [#startsprite: [#comment: "Sprite to remove from:", #format: #integer, #default: 1], #endSprite: [#comment: "Sprite to remove from:", #format: #integer, #default: 1], #scriptname: [#comment: "Script to remove:", #format: #string, #default: "script name"], #whichevent: [#comment: "Activation event:", #format: #symbol, #default: #endSprite, #range: [#mouseUp, #mouseDown, #beginSprite, #endSprite, #mouseUpOutSide, #mouseEnter]]]
  5.   return p_list
  6. end
  7.  
  8. on new me
  9.   return me
  10. end
  11.  
  12. on beginSprite me
  13.   if whichevent = #beginSprite then
  14.     run(me)
  15.   end if
  16. end
  17.  
  18. on endSprite me
  19.   if whichevent = #endSprite then
  20.     run(me)
  21.   end if
  22. end
  23.  
  24. on mouseDown me
  25.   if whichevent = #mouseDown then
  26.     run(me)
  27.   end if
  28. end
  29.  
  30. on mouseUp me
  31.   if whichevent = #mouseUp then
  32.     run(me)
  33.   end if
  34. end
  35.  
  36. on mouseUpOutSide me
  37.   if whichevent = #mouseUpOutSide then
  38.     run(me)
  39.   end if
  40. end
  41.  
  42. on mouseEnter me
  43.   if whichevent = #mouseEnter then
  44.     run(me)
  45.   end if
  46. end
  47.  
  48. on run me
  49.   repeat with n = startsprite to endSprite
  50.     if the scriptInstanceList of sprite n <> [] then
  51.       repeat with i = count(the scriptInstanceList of sprite n) down to 1
  52.         if string(getAt(the scriptInstanceList of sprite n, i)) contains scriptname then
  53.           deleteAt(the scriptInstanceList of sprite n, i)
  54.         end if
  55.       end repeat
  56.     end if
  57.   end repeat
  58. end
  59.